• File: generate_password_md5.php
  • Full Path: ../include/generate_password_md5.php
  • Date Modified: 30.04.25 07:56:04
  • File size: 414 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
//======================================================================================
// Function: Generate password - UTF
//======================================================================================
function GeneratePasswordMd5($user, $pass) {
	
        $ucs2str = mb_convert_encoding($user . "|" . $pass, 'UCS-2LE', 'UTF-8');
		
        return strtoupper(md5($ucs2str));
		
}

?>